home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 April / EnigmA AMIGA RUN 06 (1996)(G.R. Edizioni)(IT)[!][issue 1996-04][Skylink CD V].iso / earcd / editor / wordplay.rdm < prev    next >
Text File  |  1996-03-13  |  1KB  |  28 lines

  1. Short:    Finds anagrams of given phrases. v7.20
  2. Uploader: aa151@info.london.on.ca (Jonathan Fuerth)
  3. Type:     text/misc
  4.  
  5. I ported this to Amiga from ANSI C source.  It's a great little program
  6. which should give you some amusement.  Here's the explanation from the
  7. original readme file:
  8.  
  9. ---------------------------------------------------------------------------
  10. Wordplay is an anagram finder.  What is an anagram?  Well, let's turn to
  11. Merriam-Webster's Collegiate Dictionary, Tenth Edition:
  12.  
  13. Definition:  anagram:  a word or phrase made by transposing the letters
  14.                        of another word or phrase.
  15.  
  16. Each letter in the anagram must appear in the same frequency as in the
  17. original string.
  18.  
  19. For example, the letters in the word "stop" can be rearranged to spell
  20. "tops" or "pots" or "sotp".  "sotp" is not a word and is not of interest
  21. when generating anagrams.  "stop" has four letters, so there are 24 ways
  22. to rearrange its letters.  However, very few of the rearrangements actually
  23. spell words.
  24.  
  25. Wordplay, by using a list of words, takes a specified string of letters and
  26. uses the list of words to find anagrams of the string.
  27. ---------------------------------------------------------------------------
  28.